home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / silverstream_database.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  76 lines

  1. #
  2. # This script was written by Tor Houghton, but I looked at "htdig" by 
  3. # Renaud Deraison <deraison@cvs.nessus.org>
  4. #
  5. # Changes by rd:
  6. # - phrasing in the report
  7. # - pattern read
  8. #
  9. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  10. #      Erik Anderson <eanders@carmichaelsecurity.com>
  11. #      Added link to the Bugtraq message archive
  12. #
  13. # See the Nessus Scripts License for details
  14. #
  15.  
  16. if(description)
  17. {
  18.  script_id(10847);
  19.  script_version ("$Revision: 1.6 $");
  20.  
  21.  name["english"] = "SilverStream database structure";
  22.  script_name(english:name["english"]);
  23.  
  24.  desc["english"] = "
  25. It is possible to download the remote SilverStream database
  26. structure by requesting :
  27.     http://www.example.com/SilverStream/Meta/Tables/?access-mode=text
  28.     
  29.     
  30. An attacker may use this flaw to gain more knowledge about
  31. this host.
  32.  
  33. Reference : http://online.securityfocus.com/archive/101/144786
  34.  
  35. Risk factor : Medium
  36. Solution : Reconfigure the server so that others
  37. cannot view database structure";
  38.  
  39.  script_description(english:desc["english"]);
  40.  
  41.  summary["english"] = "Checks if SilverStream database structure is visible.";
  42.  
  43.  script_summary(english:summary["english"]);
  44.  
  45.  script_category(ACT_GATHER_INFO);
  46.  
  47.  script_copyright(english:"This script is Copyright (C) 2002 Tor Houghton");
  48.  family["english"] = "CGI abuses";
  49.  script_family(english:family["english"]);
  50.  script_dependencie("find_service.nes", "no404.nasl");
  51.   script_require_ports("Services/www", 80);
  52.  exit(0);
  53. }
  54.  
  55. #
  56. # The script code starts here
  57. #
  58.  
  59. include("http_func.inc");
  60.  
  61. port = get_http_port(default:80);
  62.  
  63. if(get_port_state(port)) {
  64.    soc = http_open_socket(port);
  65.    if(soc) {
  66.       buf = string("/SilverStream/Meta/Tables/?access-mode=text");
  67.       buf = http_get(item:buf, port:port);
  68.       send(socket:soc,data:buf);
  69.       rep = http_recv(socket:soc);
  70.       if("_DBProduct" >< rep)
  71.          security_warning(port);
  72.       http_close_socket(soc);
  73.    }
  74. }
  75.  
  76.